home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / dev / c / appsource.lha / APlusPlus / SASC++ / APPLibrary / amiproc / smakefile < prev    next >
Encoding:
Makefile  |  1994-01-14  |  228 b   |  15 lines

  1. OBJS= test.o amiproc.o
  2.  
  3. all: simple test
  4.  
  5. simple: simple.o amiproc.o
  6.    sc link to simple simple.o amiproc.o
  7.  
  8. test: test.o amiproc.o
  9.    sc link to test test.o amiproc.o
  10.  
  11. test.o: test.c amiproc.h
  12.  
  13. amiproc.o: amiproc.c amiproc.h
  14.  
  15.